home *** CD-ROM | disk | FTP | other *** search
- /*
- build_any: build an any change structure for the parser.
-
- Kenneth Ingham
-
- Cpyright (C) 1988 The Univversity of New Mexico
- */
-
- #include "defs.h"
- #include "y.tab.h"
-
- struct change_fmt_st *
- build_any(string)
- char *string;
- {
- struct change_fmt_st *p;
-
- p = allocate(struct change_fmt_st);
- p->name = string;
- p->fmt.type = ANY;
-
- return p;
- }
-